footer {
    background-color: rgb(48, 45, 45); 
    color: white;
    padding: 40px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    margin: 0; 
    margin-top: 2em;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto; 
    padding: 0 20px;
    width: 100%; 
    box-sizing: border-box;
}

.footer-column {
    flex: 1 1 200px; 
    margin-bottom: 20px;
    padding: 0 10px;
    box-sizing: border-box;
}

.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}

.footer-company-name {
    font-size: 16px;
    color: rgb(213, 209, 203);
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: beige;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgb(236, 235, 235);
    text-decoration: none;
    font-size: 16px;
}

.footer-links li a:hover {
    text-decoration: underline;
}

.footer-links iframe {
    width: 100%;
    height: 150px;
    border: none;
    border-radius: 10px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f2cb05d3;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box; 
}

.footer-copyright p {
    font-size: 14px;
    color: white;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .footer-column {
        flex: 1 1 45%; 
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .footer-links iframe {
        height: 200px; 
    }
}